home *** CD-ROM | disk | FTP | other *** search
- /* sortspec.h - defines sort spec data structure */
-
- typedef struct
- {
- int (*pget) () ; /* holds address of get rec. fun. */
- int (*pput) () ; /* " " " put rec. fun. */
- int (*pcomp) () ; /* " " " compare fun. */
- int ftype ; /* file typr (ASCII / BINARY ) */
- int rec_size ; /* record size */
- } SORTSPEC ;
-
-
- /* declare the following variable in the source file */
- /* SORTSPEC sspec ; or */
- /* extern SORTSPEC sspec ; */
-
-